home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus Leser 15 / Amiga Plus Leser CD 15.iso / Tools / Development / MosaicSRC / libwww2 / HTFTP.h < prev    next >
Encoding:
C/C++ Source or Header  |  2002-03-13  |  904 b   |  48 lines

  1. /*                                                               FTP access module for libwww
  2.                                    FTP ACCESS FUNCTIONS
  3.                                              
  4.    This isn't really a valid protocol module -- it is lumped together
  5.    with HTFile . That could be changed easily.
  6.    
  7.    Author: Tim Berners-Lee. Public Domain. Please mail changes to
  8.    timbl@info.cern.ch
  9.    
  10.  */
  11. #ifndef HTFTP_H
  12. #define HTFTP_H
  13.  
  14. #include "HTUtils.h"
  15. #include "HTAnchor.h"
  16. #include "HTStream.h"
  17.  
  18. /*
  19.  
  20. Retrieve File from Server
  21.  
  22.   ON EXIT,
  23.   
  24.   returns                 Socket number for file if good.<0 if bad.
  25.                          
  26.  */
  27. extern int HTFTPLoad PARAMS
  28. ((
  29.   char *          name,
  30.   HTParentAnchor *      anchor,
  31.   HTFormat              format_out,
  32.   HTStream*             sink
  33. ));
  34.  
  35.  
  36. /*
  37.  
  38. Return Host Name
  39.  
  40.  */
  41. extern CONST char * HTHostName NOPARAMS;
  42.  
  43. #endif
  44.  
  45. /*
  46.  
  47.    end  */
  48.